home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / mr_danger.swf / scripts / DefineButton2_280 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2007-03-20  |  305 b   |  21 lines

  1. on(press){
  2.    if(_global.score >= 100)
  3.    {
  4.       _global.score -= 100;
  5.    }
  6.    else
  7.    {
  8.       _global.score = 0;
  9.    }
  10.    if(_global.currentlevel >= 6)
  11.    {
  12.       _global.currentlevel -= 6;
  13.    }
  14.    else
  15.    {
  16.       _global.currentlevel = 0;
  17.    }
  18.    gotoAndStop("finish");
  19.    play();
  20. }
  21.